home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CIRC1.PAK / CIRC1.ODL < prev    next >
Text File  |  1997-05-06  |  2KB  |  76 lines

  1. // circ1.odl : type library source for OLE Custom Control project.
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (circ1.tlb) that will become a resource in
  5. // circ1.ocx.
  6.  
  7. // This is a part of the Microsoft Foundation Classes C++ library.
  8. // Copyright (C) 1992-1995 Microsoft Corporation
  9. // All rights reserved.
  10. //
  11. // This source code is only intended as a supplement to the
  12. // Microsoft Foundation Classes Reference and the
  13. // Books Online documentation provided with the library.
  14. // See these sources for detailed information regarding the
  15. // Microsoft Foundation Classes product.
  16.  
  17. #include <olectl.h>
  18.  
  19. [ uuid(9DBAFCC8-592F-101B-85CE-00608CEC297B), version(1.0),
  20.   helpstring("Circ1 OLE Custom Control module"), control ]
  21. library Circ1Lib
  22. {
  23.     importlib(STDOLE_TLB);
  24.     importlib(STDTYPE_TLB);
  25.  
  26.     //  Primary dispatch interface for CCirc1Ctrl
  27.  
  28.     [ uuid(9DBAFCC6-592F-101B-85CE-00608CEC297B),
  29.       helpstring("Dispatch interface for Circ1 Control"), hidden ]
  30.     dispinterface _DCirc1
  31.     {
  32.         properties:
  33.             // NOTE - ClassWizard will maintain property information here.
  34.             //    Use extreme caution when editing this section.
  35.             //{{AFX_ODL_PROP(CCirc1Ctrl)
  36.             //}}AFX_ODL_PROP
  37.  
  38.         methods:
  39.             // NOTE - ClassWizard will maintain method information here.
  40.             //    Use extreme caution when editing this section.
  41.             //{{AFX_ODL_METHOD(CCirc1Ctrl)
  42.             //}}AFX_ODL_METHOD
  43.  
  44.             [id(DISPID_ABOUTBOX)] void AboutBox();
  45.     };
  46.  
  47.     //  Event dispatch interface for CCirc1Ctrl
  48.  
  49.     [ uuid(9DBAFCC7-592F-101B-85CE-00608CEC297B),
  50.       helpstring("Event interface for Circ1 Control") ]
  51.     dispinterface _DCirc1Events
  52.     {
  53.         properties:
  54.             //  Event interface has no properties
  55.  
  56.         methods:
  57.             // NOTE - ClassWizard will maintain event information here.
  58.             //    Use extreme caution when editing this section.
  59.             //{{AFX_ODL_EVENT(CCirc1Ctrl)
  60.             //}}AFX_ODL_EVENT
  61.     };
  62.  
  63.     //  Class information for CCirc1Ctrl
  64.  
  65.     [ uuid(9DBAFCC5-592F-101B-85CE-00608CEC297B),
  66.       helpstring("Circ1 Control"), control ]
  67.     coclass Circ1
  68.     {
  69.         [default] dispinterface _DCirc1;
  70.         [default, source] dispinterface _DCirc1Events;
  71.     };
  72.  
  73.  
  74.     //{{AFX_APPEND_ODL}}
  75. };
  76.